home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mandrake_MDKSA-2004-152.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  93 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # This plugin text was extracted from Mandrake Linux Security Advisory MDKSA-2004:152
  5. #
  6.  
  7.  
  8. if ( ! defined_func("bn_random") ) exit(0);
  9. if(description)
  10. {
  11.  script_id(16014);
  12.  script_version ("$Revision: 1.1 $");
  13.  script_cve_id("CAN-2004-1139", "CAN-2004-1140", "CAN-2004-1141", "CAN-2004-1142");
  14.  
  15.  name["english"] = "MDKSA-2004:152: ethereal";
  16.  
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. The remote host is missing the patch for the advisory MDKSA-2004:152 (ethereal).
  21.  
  22.  
  23.  
  24. A number of vulnerabilities were discovered in Ethereal:
  25.  
  26. - Matthew Bing discovered a bug in DICOM dissection that could make Ethereal
  27. crash (CAN-2004-1139) - An invalid RTP timestamp could make Ethereal hang and
  28. create a large temporary file, possibly filling available disk space
  29. (CAN-2004-1140) - The HTTP dissector could access previously-freed memory,
  30. causing a crash (CAN-2004-1141) - Brian Caswell discovered that an improperly
  31. formatted SMB packet could make Ethereal hang, maximizing CPU utilization
  32. (CAN-2004-1142)
  33.  
  34. Ethereal 0.10.8 was released to correct these problems and is being provided.
  35.  
  36.  
  37.  
  38. Solution : http://www.mandrakesoft.com/security/advisories?name=MDKSA-2004:152
  39. Risk factor : High";
  40.  
  41.  
  42.  
  43.  script_description(english:desc["english"]);
  44.  
  45.  summary["english"] = "Check for the version of the ethereal package";
  46.  script_summary(english:summary["english"]);
  47.  
  48.  script_category(ACT_GATHER_INFO);
  49.  
  50.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  51.  family["english"] = "Mandrake Local Security Checks";
  52.  script_family(english:family["english"]);
  53.  
  54.  script_dependencies("ssh_get_info.nasl");
  55.  script_require_keys("Host/Mandrake/rpm-list");
  56.  exit(0);
  57. }
  58.  
  59. include("rpm.inc");
  60. if ( rpm_check( reference:"ethereal-0.10.8-0.1.100mdk", release:"MDK10.0", yank:"mdk") )
  61. {
  62.  security_hole(0);
  63.  exit(0);
  64. }
  65. if ( rpm_check( reference:"ethereal-0.10.8-0.1.101mdk", release:"MDK10.1", yank:"mdk") )
  66. {
  67.  security_hole(0);
  68.  exit(0);
  69. }
  70. if ( rpm_check( reference:"ethereal-tools-0.10.8-0.1.101mdk", release:"MDK10.1", yank:"mdk") )
  71. {
  72.  security_hole(0);
  73.  exit(0);
  74. }
  75. if ( rpm_check( reference:"libethereal0-0.10.8-0.1.101mdk", release:"MDK10.1", yank:"mdk") )
  76. {
  77.  security_hole(0);
  78.  exit(0);
  79. }
  80. if ( rpm_check( reference:"tethereal-0.10.8-0.1.101mdk", release:"MDK10.1", yank:"mdk") )
  81. {
  82.  security_hole(0);
  83.  exit(0);
  84. }
  85. if (rpm_exists(rpm:"ethereal-", release:"MDK10.0")
  86.  || rpm_exists(rpm:"ethereal-", release:"MDK10.1") )
  87. {
  88.  set_kb_item(name:"CAN-2004-1139", value:TRUE);
  89.  set_kb_item(name:"CAN-2004-1140", value:TRUE);
  90.  set_kb_item(name:"CAN-2004-1141", value:TRUE);
  91.  set_kb_item(name:"CAN-2004-1142", value:TRUE);
  92. }
  93.